// Split Colors  by Dr. Lex   (2000-10-18)
//               dr.lex@cryogen.com
//               http://cryogen.com/dr.lex




Durn="2",

A0="rnd(.7) + .2",
A1="rnd(.7) + .2",
A2="rnd(.8) + .2",

CamX="0",
CamY="35",
CamZ="10 * sin( a0 * t )",

CmLX="0",
CmLY="0",
CmLZ="38",

CUpX="sin( sin( a1 * t ) / 5 )",
CUpY="cos( sin( a1 * t ) / 5 )",
CUpZ="0",


widt=260,heig=160,

ConL=1,ConB=0,



B0="sin( a2 * t )", // for "wave" motion

C0="1.1 * ( 1 - dt^5 )",

D0="2 * s",         // for red
D1="D0 + dt",    // for green
D2="D0 - dt",    // for blue


R="fft( d0 - .5 ) * c0 * sqwv( d0 * 2 - 2 )",
G="fft( d1 - 1  ) * c0 * sqwv( d1 * 2 - 3 )",
B="fft( d2 )      * c0 * sqwv( d2 * 2 - 1 )",

// I first used:
//  R="fft( clip( d0 - .5 ) ) * d1",
//  G="fft( clip( d2 - 1 ) ) * d3",
//  B="fft( clip( d4 ) ) * d5",
// but apparently the "clip()" function is built into the fft() function, so we can
// save a few milliseconds by omitting it...



X="100 * s - 50",
Y="75 * ( s - .5 )^2 * b0",
Z="100 * dt",

LWdt="5 * c0",


Scal="330",
ScSz=1,

Pers="100",


Vers=40